Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #221

Merged
merged 1 commit into from
Dec 3, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
Google.Protobuf 3.28.3 -> 3.29.0 age adoption passing confidence nuget minor
Grpc.Net.Client 2.66.0 -> 2.67.0 age adoption passing confidence nuget minor
Grpc.Net.ClientFactory 2.66.0 -> 2.67.0 age adoption passing confidence nuget minor
Hl7.Fhir.Base 5.11.0 -> 5.11.1 age adoption passing confidence nuget patch
Hl7.Fhir.R4 5.11.0 -> 5.11.1 age adoption passing confidence nuget patch
Microsoft.NET.Test.Sdk 17.11.1 -> 17.12.0 age adoption passing confidence nuget minor
OpenTelemetry.Instrumentation.Http (source) 1.9.0 -> 1.10.0 age adoption passing confidence nuget minor
Swashbuckle.AspNetCore 7.0.0 -> 7.1.0 age adoption passing confidence nuget minor
Verify.Xunit 28.3.1 -> 28.4.0 age adoption passing confidence nuget minor
YamlDotNet (source) 16.2.0 -> 16.2.1 age adoption passing confidence nuget patch
csharpier 0.29.2 -> 0.30.2 age adoption passing confidence nuget minor
docker.io/bitnami/kubectl (source) 1.31.2 -> 1.31.3 age adoption passing confidence final patch
docker.io/library/postgres 17.1 -> 17.2 age adoption passing confidence minor
quay.io/keycloak/keycloak 26.0.5 -> 26.0.7 age adoption passing confidence patch

Release Notes

grpc/grpc-dotnet (Grpc.Net.Client)

v2.67.0

What's Changed
New Contributors

Full Changelog: grpc/grpc-dotnet@v2.66.0...v2.67.0

FirelyTeam/firely-net-sdk (Hl7.Fhir.Base)

v5.11.1: 5.11.1

Breaking changes :
  • ⚠️ We have reverted our recent changes related to the SnapshotGeneratorSettings. We have encountered some regressions using the new regeneration behavior that was introduced and decided to revert it until we are sure these changes are correct.
Changes:
  • #​2968: Bugfix/2854 fix validate code
  • #​2972: Make RemoveAllNonInheritableExtensions public
  • #​2975: Revert snapshot generation settings
  • #​2803: fix: #​2802 - let SnapshotSource reuse self-generated snapshot
  • #​2943: Use proper snapshot generation settings, fixed obsolete warnings
  • #​2971: Bump System.Text.Json and System.Buffers
  • #​2970: Bump System.Threading.Tasks.Dataflow from 8.0.1 to 9.0.0
  • #​2962: Bump FluentAssertions from 6.12.1 to 6.12.2
  • #​2961: Start development phase 5.11.1

This list of changes was auto generated.

microsoft/vstest (Microsoft.NET.Test.Sdk)

v17.12.0

What's Changed

Internal and infrastructure fixes:

Full Changelog: microsoft/vstest@v17.11.1...v17.12.0

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v7.1.0

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.0.0...v7.1.0

VerifyTests/Verify (Verify.Xunit)

v28.4.0

Compare Source

v28.3.2

Compare Source

aaubry/YamlDotNet (YamlDotNet)

v16.2.1: Release 16.2.1

What's Changed

Full Changelog: aaubry/YamlDotNet@v16.2.0...v16.2.1

belav/csharpier (csharpier)

v0.30.2

Compare Source

What's Changed
Collection expression inside a dictionary adds unexpected new line #​1390
// input & expected output
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",
        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};

// 0.30.1
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",

        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};
Failed syntax tree validation reported when trailing comma added before a trailing comment #​1388

With the following code, CSharpier will add a trailing comma before the trailing comment.
CSharpier's syntax tree validation was incorrectly reporting this as a failure.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};

// output
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2, // Trailing Comment
};

v0.30.1

Compare Source

What's Changed

Revert tool command back to dotnet-csharpier, it was supposed to be changed to csharpier for 1.0.0

v0.30.0

Compare Source

Breaking Changes

The CSharpier dotnet tool no longer supports net6 & net7.

What's Changed

Support C# 13 & dotnet 9. #​1318

CSharpier now supports dotnet 9 along with formatting all C# 13 language features.

Inconsistent Formatting for new() Operator Compared to Explicit Object Constructors #​1364

Implicit and explicit object initialization with constructors was not formatted consistently

// input & expected output
SomeObject someObject = new(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};

SomeObject someObject = new SomeObject(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};

// 0.29.2
SomeObject someObject =
    new(someLongParameter___________________, someLongParameter___________________)
    {
        Property = longValue_______________________________________________________________________,
    };

SomeObject someObject = new SomeObject(
    someLongParameter___________________,
    someLongParameter___________________
)
{
    Property = longValue_______________________________________________________________________,
};
Adds additional space before each member access in verbatim interpolated multiline string #​1358

When an interpolated verbatim string contained line breaks, the code within the interpolations would contain extra spaces.

// input & expected output
var someStringWithLineBreakAndLongValue =
    $@&#8203;"
{someValue.GetValue().Name} someLongText________________________________________________________________";

// 0.29.2
var someStringWithLineBreakAndLongValue =
    $@&#8203;"
        {someValue .GetValue() .Name} someLongText________________________________________________________________";
Inserting trailing comma with trailing comment causes problems. #​1354

CSharpier would insert a trailing comma after a trailing comment and format the end result poorly.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};

// 0.29.2
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 =
        2 // Trailing Comment
    ,
};

// 0.30.0
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2, // Trailing Comment
};
Double line break before collection expression in field #​1351

CSharpier was inserting an extra line break on a long field name followed by a collection expression to initialize it.

// input & expected output
class ClassName
{
    public SomeType[] LongName____________________________________________________________________________ =
    [
        someLongValue___________________________________________________,
        someLongValue___________________________________________________,
    ];
}

// 0.29.2
class ClassName
{
    public SomeType[] LongName____________________________________________________________________________ =

        [
            someLongValue___________________________________________________,
            someLongValue___________________________________________________,
        ];
}

Full Changelog: belav/csharpier@0.29.2...0.30.0


Configuration

📅 Schedule: Branch creation - "* * 1 */3 *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

github-actions bot commented Dec 3, 2024

Trivy image scan report

ghcr.io/miracum/fhir-pseudonymizer:pr-221 (ubuntu 24.04)

No Vulnerabilities found

No Misconfigurations found

opt/fhir-pseudonymizer/FhirPseudonymizer.deps.json

No Vulnerabilities found

No Misconfigurations found

opt/fhir-pseudonymizer/packages.lock.json

No Vulnerabilities found

No Misconfigurations found

usr/share/dotnet/shared/Microsoft.AspNetCore.App/9.0.0/Microsoft.AspNetCore.App.deps.json

No Vulnerabilities found

No Misconfigurations found

usr/share/dotnet/shared/Microsoft.NETCore.App/9.0.0/Microsoft.NETCore.App.deps.json

No Vulnerabilities found

No Misconfigurations found

Copy link

github-actions bot commented Dec 3, 2024

🦙 MegaLinter status: ⚠️ WARNING

Descriptor Linter Files Fixed Errors Elapsed time
✅ ACTION actionlint 5 0 0.15s
✅ BASH bash-exec 1 0 0.01s
✅ BASH shellcheck 1 0 0.02s
✅ BASH shfmt 1 0 0.02s
⚠️ CSHARP csharpier 95 1 5.4s
⚠️ CSHARP roslynator 3 3 25.42s
✅ DOCKERFILE hadolint 1 0 0.11s
✅ EDITORCONFIG editorconfig-checker 184 0 1.22s
✅ JSON jsonlint 29 0 0.29s
✅ JSON prettier 29 0 2.12s
✅ JSON v8r 29 0 21.38s
✅ MARKDOWN markdownlint 4 0 0.64s
✅ PROTOBUF protolint 4 0 4.27s
✅ REPOSITORY checkov yes no 13.85s
✅ REPOSITORY dustilock yes no 0.01s
✅ REPOSITORY gitleaks yes no 0.31s
✅ REPOSITORY git_diff yes no 0.07s
✅ REPOSITORY grype yes no 15.35s
✅ REPOSITORY kics yes no 18.05s
✅ REPOSITORY secretlint yes no 1.47s
✅ REPOSITORY syft yes no 0.43s
✅ REPOSITORY trivy yes no 12.02s
✅ REPOSITORY trivy-sbom yes no 0.37s
✅ REPOSITORY trufflehog yes no 5.69s
✅ XML xmllint 2 0 0.01s
✅ YAML prettier 30 0 1.68s
✅ YAML v8r 30 0 39.37s
✅ YAML yamllint 30 0 1.15s

See detailed report in MegaLinter reports

You could have same capabilities but better runtime performances if you request a new MegaLinter flavor.

MegaLinter is graciously provided by OX Security

Copy link

github-actions bot commented Dec 3, 2024

Code Coverage

Package Line Rate Branch Rate Health
FhirPseudonymizer 74% 65%
FhirPseudonymizer.Tests 100% 100%
Summary 81% (826 / 1018) 69% (95 / 138)

Minimum allowed line rate is 50%


iter8 report

Experiment summary:
*******************

  Experiment completed: true
  No task failures: true
  Total number of tasks: 7
  Number of completed tasks: 7
  Number of completed loops: 1

Whether or not service level objectives (SLOs) are satisfied:
*************************************************************

  SLO Conditions                 | Satisfied
  --------------                 | ---------
  http/error-count <= 0          | true
  http/latency-mean (msec) <= 25 | true
  http/latency-p99 (msec) <= 85  | true
  

Latest observed values for metrics:
***********************************

  Metric                     | value
  -------                    | -----
  http/error-count           | 0.00
  http/error-rate            | 0.00
  http/latency-max (msec)    | 928.93
  http/latency-mean (msec)   | 14.99
  http/latency-min (msec)    | 2.16
  http/latency-p50 (msec)    | 8.32
  http/latency-p75 (msec)    | 17.39
  http/latency-p90 (msec)    | 39.03
  http/latency-p95 (msec)    | 49.51
  http/latency-p99 (msec)    | 72.42
  http/latency-p99.9 (msec)  | 111.58
  http/latency-stddev (msec) | 19.81
  http/request-count         | 25000.00
  

@chgl chgl merged commit c44413c into master Dec 3, 2024
15 checks passed
@chgl chgl deleted the renovate/all-minor-patch branch December 3, 2024 21:28
miracum-bot pushed a commit that referenced this pull request Dec 3, 2024
## [2.22.2](v2.22.1...v2.22.2) (2024-12-03)

### Miscellaneous Chores

* **deps:** update all non-major dependencies ([#221](#221)) ([c44413c](c44413c))
* **deps:** update dependency fluentassertions to v7 ([#222](#222)) ([0b2dc74](0b2dc74))
* **deps:** update github-actions ([#220](#220)) ([ec23ef7](ec23ef7))
* **deps:** update mcr.microsoft.com/dotnet/sdk:9.0.100-noble docker digest to 3bdd7f7 ([#219](#219)) ([7287877](7287877))
@miracum-bot
Copy link

🎉 This PR is included in version 2.22.2 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants